| Name | Description |
|---|---|
| itch.io | Free & paid assets |
| OpenGameArt.org | Free assets |
| Kenney | CC0 assets |
| /r/gameassets | Free assets |
| Name | Type | Description | License |
| Name | Description |
|---|---|
| itch.io | Free & paid assets |
| OpenGameArt.org | Free assets |
| Kenney | CC0 assets |
| /r/gameassets | Free assets |
| Name | Type | Description | License |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| // LICENSE | |
| // ======= | |
| // Copyright (c) 2017-2019 Advanced Micro Devices, Inc. All rights reserved. | |
| // ------- | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation | |
| // files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, | |
| // modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the | |
| // Software is furnished to do so, subject to the following conditions: | |
| // ------- | |
| // The above copyright notice and this permission notice shall be included in all copies or substantial portions of the |
| from subprocess import Popen, PIPE, STDOUT, DEVNULL | |
| import time | |
| import meshtastic | |
| import meshtastic.tcp_interface | |
| from pubsub import pub | |
| pager_id = "0107962" | |
| def sendmsg(msg): |
What are the consequences for a person driving a motor vehicle under the influence of drugs (e.g. hashish, heroin, cocaine)?
[x] Confiscation of driving licence or driving ban
[x] Compulsory medical/psychological examination
[x] Fine and/or imprisonment
In which instances do you have to approach a pedestrian crossing with particular care?
LLDB comes with a great set of commands for powerful debugging.
Your starting point for anything. Type help to get a list of all commands, plus any user installed ones. Type 'help for more information on a command. Type help to get help for a specific option in a command too.
| #### 1. Sign up at GitHub.com ################################################ | |
| ## If you do not have a GitHub account, sign up here: | |
| ## https://github.com/join | |
| # ---------------------------------------------------------------------------- | |
| #### 2. Install git ########################################################## | |
| ## If you do not have git installed, please do so: |
| # I'll be doing another one for Linux, but this one will give you | |
| # a pop up notification and sound alert (using the built-in sounds for macOS) | |
| # Requires https://github.com/caarlos0/timer to be installed | |
| # Mac setup for pomo | |
| alias work="timer 60m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Work Timer is up! Take a Break 😊'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" |
# AI IDE Prompt Template: Enforce TDD, DRY & SOLID Principles
For AI coding assistants (GitHub Copilot, ChatGPT, Claude, etc.) to generate production-ready code
```prompt
### Role
You are an AI-powered IDE assistant. Your primary role is to guide development strictly through **TDD**, ensure **DRY** code, and enforce **SOLID** design principles. All code must be modular, testable, and reusable.
### Core Rules
1. **TDD Workflow (Red-Green-Refactor):**